home *** CD-ROM | disk | FTP | other *** search
/ Amiga Tools 5 / Amiga Tools 5.iso / tools / shell-tools / msdos_36 / install-msdos < prev    next >
Text File  |  1996-03-24  |  3KB  |  121 lines

  1. ;MS-DOS® For AmigaDOS®,   Copyright ©1996  Dave Lomax
  2. ;This Installer for $VER 3.6 (25.3.1996)
  3.  
  4. (complete 0)
  5.  
  6. (set #warn-kickstart-text
  7. (cat    "\nBAD VERSION OF KICKSTART\n\n"
  8.     "MSDOS for AmigaDOS, and DosWedge require KickStart 2.0 (V37) or higher.  They will not work on earlier versions.\n"
  9.     "You currently are running KickStart V%ld.\n\n"
  10. ))
  11.  
  12. (set ver (/ (getversion) 65536) )
  13.  
  14. (if (< ver 37) (
  15.     (set warning (#warn-kickstart-text ver) ) (message warning)
  16. ))
  17.  
  18. (set @DESTINATION
  19.     (askdir
  20.         (prompt "Where would you like MSDOS® For AmigaDOS® Installed?\n"
  21.                 "(A directory called MSDOS will be created there)")
  22.               (help @askdir-help)
  23.               (default "SYS:System")
  24.     )
  25. )
  26.  
  27. (set @DEST (tackon @DESTINATION "MSDOS"))
  28.  
  29. (complete 5)
  30.  
  31. (makedir @DEST
  32.     (prompt "\n\n\n\nCreating directory MSDOS")
  33.     (help "\n\n\nI'm making a directory to bung all\n"
  34.           "of the MS-DOS® commands in.\n\n"
  35.               "If you move it, you MUST change the\n"
  36.               "User-Startup assign accordingly")
  37.     (infos)
  38.     (confirm)
  39. )
  40.  
  41. (complete 5)
  42.  
  43. (copyfiles
  44.     (prompt "\n\n\n\n"
  45.                 "Installing MS-DOS® Commands...\n\n"
  46.                 "This will copy across all the MS-DOS® commands\n")
  47.     (help @copyfiles-help)
  48.     (source "DOS6")
  49.     (dest @DEST)
  50.     (all)
  51.     (infos)
  52. )
  53.  
  54. (complete 40)
  55.  
  56. (set @DESTHELP
  57.         (askdir
  58.                 (prompt "Where would you like the Help Guide Installed?")
  59.                 (help @askdir-help)
  60.                 (default @DEST)
  61.         )
  62. )
  63.  
  64. (complete 40)
  65.  
  66. (copyfiles
  67.     (prompt "Copying MSDOS.Guide\n")
  68.     (help "This will copy the MSDOS.Guide file\n"
  69.           "to where you have just selected\n")
  70.     (source "MSDOS_36.Guide")
  71.     (dest @DESTHELP)
  72.     (infos)
  73.     (confirm)
  74. )
  75.  
  76. (complete 70)
  77.  
  78. (startup "[MSDOS® For AmigaDOS®     ©1996 Dave Lomax]"
  79.     (prompt "\n\n\n\nAdding an assign to\n\nS:User-Startup")
  80.     (help "This will add a line to your\n\n"
  81.           "S:User-Startup file which simply\n\n"
  82.           "makes an ASSIGN to its path.\n")
  83.     (command (cat "Assign DOS6: " @DEST))
  84. )
  85.  
  86. (complete 80)
  87.  
  88. (makeassign "DOS6" @DEST)
  89.  
  90. (complete 85)
  91.  
  92. (copyfiles
  93.     (prompt "\n\n\nInstalling icons")
  94.     (help "\n\nThis simply copies across all"
  95.           "\nthe icons which SnapShot your new"
  96.           "\ngoodies in exactly the right place."
  97.           "\nNothing to fear!")
  98.     (source "Icons")
  99.     (pattern "~MSDOS.info")
  100.     (dest "DOS6:")
  101.     (confirm)
  102. )
  103.  
  104. (copyfiles
  105.     (prompt "\n\n\nInstalling directory icon")
  106.     (source "Icons/MSDOS.info")
  107.     (dest "DOS6:/")
  108. )
  109.  
  110. (complete 100)
  111.  
  112. (message "\n\n\nDon't forget!!\n\n"
  113.          "You can't use .. & . & * yet\n"
  114.          "until you have Installed DosWedge!\n\n"
  115.          "Please install that now, by locating\n"
  116.          "and double-clicking its Install icon\n\n"
  117.          "Then reboot!")
  118.  
  119. (exit)
  120.  
  121.